vendor/golang.org/x/net/http2/hpack.Encoder.buf (field)

15 uses

	vendor/golang.org/x/net/http2/hpack (current package)
		encode.go#L30: 	buf             []byte
		encode.go#L51: 	e.buf = e.buf[:0]
		encode.go#L56: 			e.buf = appendTableSize(e.buf, e.minSize)
		encode.go#L59: 		e.buf = appendTableSize(e.buf, e.dynTab.maxSize)
		encode.go#L64: 		e.buf = appendIndexed(e.buf, idx)
		encode.go#L72: 			e.buf = appendNewName(e.buf, f, indexing)
		encode.go#L74: 			e.buf = appendIndexedName(e.buf, f, idx, indexing)
		encode.go#L77: 	n, err := e.w.Write(e.buf)
		encode.go#L78: 	if err == nil && n != len(e.buf) {